home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 October / enter-2005-10.iso / files / jedit42install.exe / {app} / macros / Misc / Evaluate_Buffer_in_BeanShell.bsh < prev    next >
Encoding:
Text File  |  2004-08-29  |  1.9 KB  |  57 lines

  1. /*
  2.  * Evaluate_Buffer_in_BeanShell.bsh - a BeanShell macro script for the
  3.  * jEdit text editor -  evaluates contents of buffer as
  4.  * BeanShell script
  5.  * Copyright (C) 2001 John Gellene
  6.  * jgellene@nyc.rr.com
  7.  * http://community.jedit.org
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with the jEdit program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  *
  23.  * $Id: Evaluate_Buffer_in_BeanShell.bsh,v 1.2 2001/11/06 17:57:35 jgellene Exp $
  24.  *
  25.  * Checked for jEdit 4.0 API
  26.  *
  27.  */
  28.  
  29. jEdit.newFile(view);
  30. BeanShell.runScript(view, buffer.getPath(), false, false);
  31.  
  32. /*
  33.     Macro index data (in DocBook format)
  34.  
  35. <listitem>
  36.     <para><filename>Evaluate_Buffer_in_BeanShell.bsh</filename></para>
  37.     <abstract><para>
  38.         Evaluates contents of current buffer as a BeanShell script,
  39.         and opens a new
  40.         buffer to receive any text output.
  41.     </para></abstract>
  42.     <para>
  43.         This is a quick way to test a macro script even before its text
  44.         is saved to a file.  Opening a new buffer for output is a precaution
  45.         to prevent the macro from inadvertently erasing or overwriting
  46.         itself.  BeanShell scripts that operate on the contents of the
  47.         current buffer will not work meaningfully when tested using this
  48.         macro.
  49.     </para>
  50. </listitem>
  51.  
  52. */
  53.  
  54.  
  55. // end of Evaluate_Buffer_in_BeanShell.bsh
  56.  
  57.